home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 27 / CU Amiga Magazine's Super CD-ROM 27 (1998)(EMAP Images)(GB)[!][issue 1998-10].iso / CUCD / PowerPC / vbcc / Examples / paranoia / paranoia.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-05-24  |  56.5 KB  |  2,205 lines

  1. #undef V9
  2. #define NOPAUSE
  3. /*    A C version of Kahan's Floating Point Test "Paranoia"
  4.  
  5.             Thos Sumner, UCSF, Feb. 1985
  6.             David Gay, BTL, Jan. 1986
  7.  
  8.     This is a rewrite from the Pascal version by
  9.  
  10.             B. A. Wichmann, 18 Jan. 1985
  11.  
  12.     (and does NOT exhibit good C programming style).
  13.  
  14. (C) Apr 19 1983 in BASIC version by:
  15.     Professor W. M. Kahan,
  16.     567 Evans Hall
  17.     Electrical Engineering & Computer Science Dept.
  18.     University of California
  19.     Berkeley, California 94720
  20.     USA
  21.  
  22. converted to Pascal by:
  23.     B. A. Wichmann
  24.     National Physical Laboratory
  25.     Teddington Middx
  26.     TW11 OLW
  27.     UK
  28.  
  29. converted to C by:
  30.  
  31.     David M. Gay        and    Thos Sumner
  32.     AT&T Bell Labs            Computer Center, Rm. U-76
  33.     600 Mountain Avenue        University of California
  34.     Murray Hill, NJ 07974        San Francisco, CA 94143
  35.     USA                USA
  36.  
  37. with simultaneous corrections to the Pascal source (reflected
  38. in the Pascal source available over netlib).
  39. [A couple of bug fixes from dgh = sun!dhough incorporated 31 July 1986.]
  40.  
  41. Reports of results on various systems from all the versions
  42. of Paranoia are being collected by Richard Karpinski at the
  43. same address as Thos Sumner.  This includes sample outputs,
  44. bug reports, and criticisms.
  45.  
  46. You may copy this program freely if you acknowledge its source.
  47. Comments on the Pascal version to NPL, please.
  48.  
  49.  
  50. The C version catches signals from floating-point exceptions.
  51. If signal(SIGFPE,...) is unavailable in your environment, you may
  52. #define NOSIGNAL to comment out the invocations of signal.
  53.  
  54. This source file is too big for some C compilers, but may be split
  55. into pieces.  Comments containing "SPLIT" suggest convenient places
  56. for this splitting.  At the end of these comments is an "ed script"
  57. (for the UNIX(tm) editor ed) that will do this splitting.
  58.  
  59. By #defining Single when you compile this source, you may obtain
  60. a single-precision C version of Paranoia.
  61.  
  62.  
  63. The following is from the introductory commentary from Wichmann's work:
  64.  
  65. The BASIC program of Kahan is written in Microsoft BASIC using many
  66. facilities which have no exact analogy in Pascal.  The Pascal
  67. version below cannot therefore be exactly the same.  Rather than be
  68. a minimal transcription of the BASIC program, the Pascal coding
  69. follows the conventional style of block-structured languages.  Hence
  70. the Pascal version could be useful in producing versions in other
  71. structured languages.
  72.  
  73. Rather than use identifiers of minimal length (which therefore have
  74. little mnemonic significance), the Pascal version uses meaningful
  75. identifiers as follows [Note: A few changes have been made for C]:
  76.  
  77.  
  78. BASIC   C               BASIC   C               BASIC   C               
  79.  
  80.    A                       J                       S    StickyBit
  81.    A1   AInverse           J0   NoErrors           T
  82.    B    Radix                    [Failure]         T0   Underflow
  83.    B1   BInverse           J1   NoErrors           T2   ThirtyTwo
  84.    B2   RadixD2                  [SeriousDefect]   T5   OneAndHalf
  85.    B9   BMinusU2           J2   NoErrors           T7   TwentySeven
  86.    C                             [Defect]          T8   TwoForty
  87.    C1   CInverse           J3   NoErrors           U    OneUlp
  88.    D                             [Flaw]            U0   UnderflowThreshold
  89.    D4   FourD              K    PageNo             U1
  90.    E0                      L    Milestone          U2
  91.    E1                      M                       V
  92.    E2   Exp2               N                       V0
  93.    E3                      N1                      V8
  94.    E5   MinSqEr            O    Zero               V9
  95.    E6   SqEr               O1   One                W
  96.    E7   MaxSqEr            O2   Two                X
  97.    E8                      O3   Three              X1
  98.    E9                      O4   Four               X8
  99.    F1   MinusOne           O5   Five               X9   Random1
  100.    F2   Half               O8   Eight              Y
  101.    F3   Third              O9   Nine               Y1
  102.    F6                      P    Precision          Y2
  103.    F9                      Q                       Y9   Random2
  104.    G1   GMult              Q8                      Z
  105.    G2   GDiv               Q9                      Z0   PseudoZero
  106.    G3   GAddSub            R                       Z1
  107.    H                       R1   RMult              Z2
  108.    H1   HInverse           R2   RDiv               Z9
  109.    I                       R3   RAddSub
  110.    IO   NoTrials           R4   RSqrt
  111.    I3   IEEE               R9   Random9
  112.  
  113.    SqRWrng
  114.  
  115. All the variables in BASIC are true variables and in consequence,
  116. the program is more difficult to follow since the "constants" must
  117. be determined (the glossary is very helpful).  The Pascal version
  118. uses Real constants, but checks are added to ensure that the values
  119. are correctly converted by the compiler.
  120.  
  121. The major textual change to the Pascal version apart from the
  122. identifiersis that named procedures are used, inserting parameters
  123. wherehelpful.  New procedures are also introduced.  The
  124. correspondence is as follows:
  125.  
  126.  
  127. BASIC       Pascal
  128. lines 
  129.  
  130.   90- 140   Pause
  131.  170- 250   Instructions
  132.  380- 460   Heading
  133.  480- 670   Characteristics
  134.  690- 870   History
  135. 2940-2950   Random
  136. 3710-3740   NewD
  137. 4040-4080   DoesYequalX
  138. 4090-4110   PrintIfNPositive
  139. 4640-4850   TestPartialUnderflow
  140.  
  141. =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
  142.  
  143. Below is an "ed script" that splits para.c into 10 files
  144. of the form part[1-8].c, subs.c, and msgs.c, plus a header
  145. file, paranoia.h, that these files require.
  146.  
  147. r paranoia.c
  148. $
  149. ?SPLIT
  150. +,$w msgs.c
  151.  .,$d
  152. ?SPLIT
  153.  .d
  154. +d
  155. -,$w subs.c
  156. -,$d
  157. ?part8
  158. +d
  159. ?include
  160.  .,$w part8.c
  161.  .,$d
  162. -d
  163. ?part7
  164. +d
  165. ?include
  166.  .,$w part7.c
  167.  .,$d
  168. -d
  169. ?part6
  170. +d
  171. ?include
  172.  .,$w part6.c
  173.  .,$d
  174. -d
  175. ?part5
  176. +d
  177. ?include
  178.  .,$w part5.c
  179.  .,$d
  180. -d
  181. ?part4
  182. +d
  183. ?include
  184.  .,$w part4.c
  185.  .,$d
  186. -d
  187. ?part3
  188. +d
  189. ?include
  190.  .,$w part3.c
  191.  .,$d
  192. -d
  193. ?part2
  194. +d
  195. ?include
  196.  .,$w part2.c
  197.  .,$d
  198. ?SPLIT
  199.  .d
  200. 1,/^#include/-1d
  201. 1,$w part1.c
  202. /Computed constants/,$d
  203. 1,$s/^int/extern &/
  204. 1,$s/^FLOAT/extern &/
  205. 1,$s/^char/extern &/
  206. 1,$s! = .*!;!
  207. /^Guard/,/^Round/s/^/extern /
  208. /^jmp_buf/s/^/extern /
  209. /^Sig_type/s/^/extern /
  210. s/$/\
  211. extern void sigfpe();/
  212. w paranoia.h
  213. q
  214.  
  215. */
  216.  
  217. #include <stdio.h>
  218. #ifndef NOSIGNAL
  219. #include <signal.h>
  220. #endif
  221. #include <setjmp.h>
  222. #include <math.h>
  223.  
  224. extern double fabs(), floor(), log(), pow(), sqrt();
  225.  
  226. #ifdef Single
  227. #define FLOAT float
  228. #define FABS(x) (float)fabs((double)(x))
  229. #define FLOOR(x) (float)floor((double)(x))
  230. #define LOG(x) (float)log((double)(x))
  231. #define POW(x,y) (float)pow((double)(x),(double)(y))
  232. #define SQRT(x) (float)sqrt((double)(x))
  233. #else
  234. #define FLOAT double
  235. #define FABS(x) fabs(x)
  236. #define FLOOR(x) floor(x)
  237. #define LOG(x) log(x)
  238. #define POW(x,y) pow(x,y)
  239. #define SQRT(x) sqrt(x)
  240. #endif
  241.  
  242. jmp_buf ovfl_buf;
  243. typedef void (*Sig_type)();
  244. Sig_type sigsave;
  245.  
  246. #define KEYBOARD 0
  247.  
  248. FLOAT Radix, BInvrse, RadixD2, BMinusU2;
  249. FLOAT Sign(), Random();
  250.  
  251. /*Small floating point constants.*/
  252. FLOAT Zero = 0.0;
  253. FLOAT Half = 0.5;
  254. FLOAT One = 1.0;
  255. FLOAT Two = 2.0;
  256. FLOAT Three = 3.0;
  257. FLOAT Four = 4.0;
  258. FLOAT Five = 5.0;
  259. FLOAT Eight = 8.0;
  260. FLOAT Nine = 9.0;
  261. FLOAT TwentySeven = 27.0;
  262. FLOAT ThirtyTwo = 32.0;
  263. FLOAT TwoForty = 240.0;
  264. FLOAT MinusOne = -1.0;
  265. FLOAT OneAndHalf = 1.5;
  266. /*Integer constants*/
  267. int NoTrials = 20; /*Number of tests for commutativity. */
  268. #define False 0
  269. #define True 1
  270.  
  271. /* Definitions for declared types 
  272.     Guard == (Yes, No);
  273.     Rounding == (Chopped, Rounded, Other);
  274.     Message == packed array [1..40] of char;
  275.     Class == (Flaw, Defect, Serious, Failure);
  276.       */
  277. #define Yes 1
  278. #define No  0
  279. #define Chopped 2
  280. #define Rounded 1
  281. #define Other   0
  282. #define Flaw    3
  283. #define Defect  2
  284. #define Serious 1
  285. #define Failure 0
  286. typedef int Guard, Rounding, Class;
  287. typedef char Message;
  288.  
  289. /* Declarations of Variables */
  290. int Indx;
  291. char ch[8];
  292. FLOAT AInvrse, A1;
  293. FLOAT C, CInvrse;
  294. FLOAT D, FourD;
  295. FLOAT E0, E1, Exp2, E3, MinSqEr;
  296. FLOAT SqEr, MaxSqEr, E9;
  297. FLOAT Third;
  298. FLOAT F6, F9;
  299. FLOAT H, HInvrse;
  300. int I;
  301. FLOAT StickyBit, J;
  302. FLOAT MyZero;
  303. FLOAT Precision;
  304. FLOAT Q, Q9;
  305. FLOAT R, Random9;
  306. FLOAT T, Underflow, S;
  307. FLOAT OneUlp, UfThold, U1, U2;
  308. FLOAT V, V0, V9;
  309. FLOAT W;
  310. FLOAT X, X1, X2, X8, Random1;
  311. FLOAT Y, Y1, Y2, Random2;
  312. FLOAT Z, PseudoZero, Z1, Z2, Z9;
  313. int ErrCnt[4];
  314. int fpecount;
  315. int Milestone;
  316. int PageNo;
  317. int M, N, N1;
  318. Guard GMult, GDiv, GAddSub;
  319. Rounding RMult, RDiv, RAddSub, RSqrt;
  320. int Break, Done, NotMonot, Monot, Anomaly, IEEE,
  321.         SqRWrng, UfNGrad;
  322. /* Computed constants. */
  323. /*U1  gap below 1.0, i.e, 1.0-U1 is next number below 1.0 */
  324. /*U2  gap above 1.0, i.e, 1.0+U2 is next number above 1.0 */
  325.  
  326. /* floating point exception receiver */
  327.  void
  328. sigfpe(i)
  329. {
  330.     fpecount++;
  331.     printf("\n* * * FLOATING-POINT ERROR * * *\n");
  332.     fflush(stdout);
  333.     if (sigsave) {
  334. #ifndef NOSIGNAL
  335.         signal(SIGFPE, sigsave);
  336. #endif
  337.         sigsave = 0;
  338.         longjmp(ovfl_buf, 1);
  339.         }
  340.     abort();
  341. }
  342.  
  343. main()
  344. {
  345. #ifdef mc
  346.     char *out;
  347.     ieee_flags("set", "precision", "double", &out);
  348. #endif
  349.     /* First two assignments use integer right-hand sides. */
  350.     Zero = 0;
  351.     One = 1;
  352.     Two = One + One;
  353.     Three = Two + One;
  354.     Four = Three + One;
  355.     Five = Four + One;
  356.     Eight = Four + Four;
  357.     Nine = Three * Three;
  358.     TwentySeven = Nine * Three;
  359.     ThirtyTwo = Four * Eight;
  360.     TwoForty = Four * Five * Three * Four;
  361.     MinusOne = -One;
  362.     Half = One / Two;
  363.     OneAndHalf = One + Half;
  364.     ErrCnt[Failure] = 0;
  365.     ErrCnt[Serious] = 0;
  366.     ErrCnt[Defect] = 0;
  367.     ErrCnt[Flaw] = 0;
  368.     PageNo = 1;
  369.     /*=============================================*/
  370.     Milestone = 0;
  371.     /*=============================================*/
  372. #ifndef NOSIGNAL
  373.     signal(SIGFPE, sigfpe);
  374. #endif
  375.     Instructions();
  376.     Pause();
  377.     Heading();
  378.     Pause();
  379.     Characteristics();
  380.     Pause();
  381.     History();
  382.     Pause();
  383.     /*=============================================*/
  384.     Milestone = 7;
  385.     /*=============================================*/
  386.     printf("Program is now RUNNING tests on small integers:\n");
  387.     
  388.     TstCond (Failure, (Zero + Zero == Zero) && (One - One == Zero)
  389.            && (One > Zero) && (One + One == Two),
  390.             "0+0 != 0, 1-1 != 0, 1 <= 0, or 1+1 != 2");
  391.     Z = - Zero;
  392.     if (Z != 0.0) {
  393.         ErrCnt[Failure] = ErrCnt[Failure] + 1;
  394.         printf("Comparison alleges that -0.0 is Non-zero!\n");
  395.         U1 = 0.001;
  396.         Radix = 1;
  397.         TstPtUf();
  398.         }
  399.     TstCond (Failure, (Three == Two + One) && (Four == Three + One)
  400.            && (Four + Two * (- Two) == Zero)
  401.            && (Four - Three - One == Zero),
  402.            "3 != 2+1, 4 != 3+1, 4+2*(-2) != 0, or 4-3-1 != 0");
  403.     TstCond (Failure, (MinusOne == (0 - One))
  404.            && (MinusOne + One == Zero ) && (One + MinusOne == Zero)
  405.            && (MinusOne + FABS(One) == Zero)
  406.            && (MinusOne + MinusOne * MinusOne == Zero),
  407.            "-1+1 != 0, (-1)+abs(1) != 0, or -1+(-1)*(-1) != 0");
  408.     TstCond (Failure, Half + MinusOne + Half == Zero,
  409.           "1/2 + (-1) + 1/2 != 0");
  410.     /*=============================================*/
  411.     /*SPLIT
  412.     part2();
  413.     part3();
  414.     part4();
  415.     part5();
  416.     part6();
  417.     part7();
  418.     part8();
  419.     }
  420. #include "paranoia.h"
  421. part2(){
  422. */
  423.     Milestone = 10;
  424.     /*=============================================*/
  425.     TstCond (Failure, (Nine == Three * Three)
  426.            && (TwentySeven == Nine * Three) && (Eight == Four + Four)
  427.            && (ThirtyTwo == Eight * Four)
  428.            && (ThirtyTwo - TwentySeven - Four - One == Zero),
  429.            "9 != 3*3, 27 != 9*3, 32 != 8*4, or 32-27-4-1 != 0");
  430.     TstCond (Failure, (Five == Four + One) &&
  431.             (TwoForty == Four * Five * Three * Four)
  432.            && (TwoForty / Three - Four * Four * Five == Zero)
  433.            && ( TwoForty / Four - Five * Three * Four == Zero)
  434.            && ( TwoForty / Five - Four * Three * Four == Zero),
  435.           "5 != 4+1, 240/3 != 80, 240/4 != 60, or 240/5 != 48");
  436.     if (ErrCnt[Failure] == 0) {
  437.         printf("-1, 0, 1/2, 1, 2, 3, 4, 5, 9, 27, 32 & 240 are O.K.\n");
  438.         printf("\n");
  439.         }
  440.     printf("Searching for Radix and Precision.\n");
  441.     W = One;
  442.     do  {
  443.         W = W + W;
  444.         Y = W + One;
  445.         Z = Y - W;
  446.         Y = Z - One;
  447.         } while (MinusOne + FABS(Y) < Zero);
  448.     /*.. now W is just big enough that |((W+1)-W)-1| >= 1 ...*/
  449.     Precision = Zero;
  450.     Y = One;
  451.     do  {
  452.         Radix = W + Y;
  453.         Y = Y + Y;
  454.         Radix = Radix - W;
  455.         } while ( Radix == Zero);
  456.     if (Radix < Two) Radix = One;
  457.     printf("Radix = %f .\n", Radix);
  458.     if (Radix != 1) {
  459.         W = One;
  460.         do  {
  461.             Precision = Precision + One;
  462.             W = W * Radix;
  463.             Y = W + One;
  464.             } while ((Y - W) == One);
  465.         }
  466.     /*... now W == Radix^Precision is barely too big to satisfy (W+1)-W == 1
  467.                                           ...*/
  468.     U1 = One / W;
  469.     U2 = Radix * U1;
  470.     printf("Closest relative separation found is U1 = %.7e .\n\n", U1);
  471.     printf("Recalculating radix and precision\n ");
  472.     
  473.     /*save old values*/
  474.     E0 = Radix;
  475.     E1 = U1;
  476.     E9 = U2;
  477.     E3 = Precision;
  478.     
  479.     X = Four / Three;
  480.     Third = X - One;
  481.     F6 = Half - Third;
  482.     X = F6 + F6;
  483.     X = FABS(X - Third);
  484.     if (X < U2) X = U2;
  485.     
  486.     /*... now X = (unknown no.) ulps of 1+...*/
  487.     do  {
  488.         U2 = X;
  489.         Y = Half * U2 + ThirtyTwo * U2 * U2;
  490.         Y = One + Y;
  491.         X = Y - One;
  492.         } while ( ! ((U2 <= X) || (X <= Zero)));
  493.     
  494.     /*... now U2 == 1 ulp of 1 + ... */
  495.     X = Two / Three;
  496.     F6 = X - Half;
  497.     Third = F6 + F6;
  498.     X = Third - Half;
  499.     X = FABS(X + F6);
  500.     if (X < U1) X = U1;
  501.     
  502.     /*... now  X == (unknown no.) ulps of 1 -... */
  503.     do  {
  504.         U1 = X;
  505.         Y = Half * U1 + ThirtyTwo * U1 * U1;
  506.         Y = Half - Y;
  507.         X = Half + Y;
  508.         Y = Half - X;
  509.         X = Half + Y;
  510.         } while ( ! ((U1 <= X) || (X <= Zero)));
  511.     /*... now U1 == 1 ulp of 1 - ... */
  512.     if (U1 == E1) printf("confirms closest relative separation U1 .\n");
  513.     else printf("gets better closest relative separation U1 = %.7e .\n", U1);
  514.     W = One / U1;
  515.     F9 = (Half - U1) + Half;
  516.     Radix = FLOOR(0.01 + U2 / U1);
  517.     if (Radix == E0) printf("Radix confirmed.\n");
  518.     else printf("MYSTERY: recalculated Radix = %.7e .\n", Radix);
  519.     TstCond (Defect, Radix <= Eight + Eight,
  520.            "Radix is too big: roundoff problems");
  521.     TstCond (Flaw, (Radix == Two) || (Radix == 10)
  522.            || (Radix == One), "Radix is not as good as 2 or 10");
  523.     /*=============================================*/
  524.     Milestone = 20;
  525.     /*=============================================*/
  526.     TstCond (Failure, F9 - Half < Half,
  527.            "(1-U1)-1/2 < 1/2 is FALSE, prog. fails?");
  528.     X = F9;
  529.     I = 1;
  530.     Y = X - Half;
  531.     Z = Y - Half;
  532.     TstCond (Failure, (X != One)
  533.            || (Z == Zero), "Comparison is fuzzy,X=1 but X-1/2-1/2 != 0");
  534.     X = One + U2;
  535.     I = 0;
  536.     /*=============================================*/
  537.     Milestone = 25;
  538.     /*=============================================*/
  539.     /*... BMinusU2 = nextafter(Radix, 0) */
  540.     BMinusU2 = Radix - One;
  541.     BMinusU2 = (BMinusU2 - U2) + One;
  542.     /* Purify Integers */
  543.     if (Radix != One)  {
  544.         X = - TwoForty * LOG(U1) / LOG(Radix);
  545.         Y = FLOOR(Half + X);
  546.         if (FABS(X - Y) * Four < One) X = Y;
  547.         Precision = X / TwoForty;
  548.         Y = FLOOR(Half + Precision);
  549.         if (FABS(Precision - Y) * TwoForty < Half) Precision = Y;
  550.         }
  551.     if ((Precision != FLOOR(Precision)) || (Radix == One)) {
  552.         printf("Precision cannot be characterized by an Integer number\n");
  553.         printf("of significant digits but, by itself, this is a minor flaw.\n");
  554.         }
  555.     if (Radix == One) 
  556.         printf("logarithmic encoding has precision characterized solely by U1.\n");
  557.     else printf("The number of significant digits of the Radix is %f .\n",
  558.             Precision);
  559.     TstCond (Serious, U2 * Nine * Nine * TwoForty < One,
  560.            "Precision worse than 5 decimal figures  ");
  561.     /*=============================================*/
  562.     Milestone = 30;
  563.     /*=============================================*/
  564.     /* Test for extra-precise subepressions */
  565.     X = FABS(((Four / Three - One) - One / Four) * Three - One / Four);
  566.     do  {
  567.         Z2 = X;
  568.         X = (One + (Half * Z2 + ThirtyTwo * Z2 * Z2)) - One;
  569.         } while ( ! ((Z2 <= X) || (X <= Zero)));
  570.     X = Y = Z = FABS((Three / Four - Two / Three) * Three - One / Four);
  571.     do  {
  572.         Z1 = Z;
  573.         Z = (One / Two - ((One / Two - (Half * Z1 + ThirtyTwo * Z1 * Z1))
  574.             + One / Two)) + One / Two;
  575.         } while ( ! ((Z1 <= Z) || (Z <= Zero)));
  576.     do  {
  577.         do  {
  578.             Y1 = Y;
  579.             Y = (Half - ((Half - (Half * Y1 + ThirtyTwo * Y1 * Y1)) + Half
  580.                 )) + Half;
  581.             } while ( ! ((Y1 <= Y) || (Y <= Zero)));
  582.         X1 = X;
  583.         X = ((Half * X1 + ThirtyTwo * X1 * X1) - F9) + F9;
  584.         } while ( ! ((X1 <= X) || (X <= Zero)));
  585.     if ((X1 != Y1) || (X1 != Z1)) {
  586.         BadCond(Serious, "Disagreements among the values X1, Y1, Z1,\n");
  587.         printf("respectively  %.7e,  %.7e,  %.7e,\n", X1, Y1, Z1);
  588.         printf("are symptoms of inconsistencies introduced\n");
  589.         printf("by extra-precise evaluation of arithmetic subexpressions.\n");
  590.         notify("Possibly some part of this");
  591.         if ((X1 == U1) || (Y1 == U1) || (Z1 == U1))  printf(
  592.             "That feature is not tested further by this program.\n") ;
  593.         }
  594.     else  {
  595.         if ((Z1 != U1) || (Z2 != U2)) {
  596.             if ((Z1 >= U1) || (Z2 >= U2)) {
  597.                 BadCond(Failure, "");
  598.                 notify("Precision");
  599.                 printf("\tU1 = %.7e, Z1 - U1 = %.7e\n",U1,Z1-U1);
  600.                 printf("\tU2 = %.7e, Z2 - U2 = %.7e\n",U2,Z2-U2);
  601.                 }
  602.             else {
  603.                 if ((Z1 <= Zero) || (Z2 <= Zero)) {
  604.                     printf("Because of unusual Radix = %f", Radix);
  605.                     printf(", or exact rational arithmetic a result\n");
  606.                     printf("Z1 = %.7e, or Z2 = %.7e ", Z1, Z2);
  607.                     notify("of an\nextra-precision");
  608.                     }
  609.                 if (Z1 != Z2 || Z1 > Zero) {
  610.                     X = Z1 / U1;
  611.                     Y = Z2 / U2;
  612.                     if (Y > X) X = Y;
  613.                     Q = - LOG(X);
  614.                     printf("Some subexpressions appear to be calculated extra\n");
  615.                     printf("precisely with about %g extra B-digits, i.e.\n",
  616.                         (Q / LOG(Radix)));
  617.                     printf("roughly %g extra significant decimals.\n",
  618.                         Q / LOG(10.));
  619.                     }
  620.                 printf("That feature is not tested further by this program.\n");
  621.                 }
  622.             }
  623.         }
  624.     Pause();
  625.     /*=============================================*/
  626.     /*SPLIT
  627.     }
  628. #include "paranoia.h"
  629. part3(){
  630. */
  631.     Milestone = 35;
  632.     /*=============================================*/
  633.     if (Radix >= Two) {
  634.         X = W / (Radix * Radix);
  635.         Y = X + One;
  636.         Z = Y - X;
  637.         T = Z + U2;
  638.         X = T - Z;
  639.         TstCond (Failure, X == U2,
  640.             "Subtraction is not normalized X=Y,X+Z != Y+Z!");
  641.         if (X == U2) printf(
  642.             "Subtraction appears to be normalized, as it should be.");
  643.         }
  644.     printf("\nChecking for guard digit in *, /, and -.\n");
  645.     Y = F9 * One;
  646.     Z = One * F9;
  647.     X = F9 - Half;
  648.     Y = (Y - Half) - X;
  649.     Z = (Z - Half) - X;
  650.     X = One + U2;
  651.     T = X * Radix;
  652.     R = Radix * X;
  653.     X = T - Radix;
  654.     X = X - Radix * U2;
  655.     T = R - Radix;
  656.     T = T - Radix * U2;
  657.     X = X * (Radix - One);
  658.     T = T * (Radix - One);
  659.     if ((X == Zero) && (Y == Zero) && (Z == Zero) && (T == Zero)) GMult = Yes;
  660.     else {
  661.         GMult = No;
  662.         TstCond (Serious, False,
  663.             "* lacks a Guard Digit, so 1*X != X");
  664.         }
  665.     Z = Radix * U2;
  666.     X = One + Z;
  667.     Y = FABS((X + Z) - X * X) - U2;
  668.     X = One - U2;
  669.     Z = FABS((X - U2) - X * X) - U1;
  670.     TstCond (Failure, (Y <= Zero)
  671.            && (Z <= Zero), "* gets too many final digits wrong.\n");
  672.     Y = One - U2;
  673.     X = One + U2;
  674.     Z = One / Y;
  675.     Y = Z - X;
  676.     X = One / Three;
  677.     Z = Three / Nine;
  678.     X = X - Z;
  679.     T = Nine / TwentySeven;
  680.     Z = Z - T;
  681.     TstCond(Defect, X == Zero && Y == Zero && Z == Zero,
  682.         "Division lacks a Guard Digit, so error can exceed 1 ulp\nor  1/3  and  3/9  and  9/27 may disagree");
  683.     Y = F9 / One;
  684.     X = F9 - Half;
  685.     Y = (Y - Half) - X;
  686.     X = One + U2;
  687.     T = X / One;
  688.     X = T - X;
  689.     if ((X == Zero) && (Y == Zero) && (Z == Zero)) GDiv = Yes;
  690.     else {
  691.         GDiv = No;
  692.         TstCond (Serious, False,
  693.             "Division lacks a Guard Digit, so X/1 != X");
  694.         }
  695.     X = One / (One + U2);
  696.     Y = X - Half - Half;
  697.     TstCond (Serious, Y < Zero,
  698.            "Computed value of 1/1.000..1 >= 1");
  699.     X = One - U2;
  700.     Y = One + Radix * U2;
  701.     Z = X * Radix;
  702.     T = Y * Radix;
  703.     R = Z / Radix;
  704.     StickyBit = T / Radix;
  705.     X = R - X;
  706.     Y = StickyBit - Y;
  707.     TstCond (Failure, X == Zero && Y == Zero,
  708.             "* and/or / gets too many last digits wrong");
  709.     Y = One - U1;
  710.     X = One - F9;
  711.     Y = One - Y;
  712.     T = Radix - U2;
  713.     Z = Radix - BMinusU2;
  714.     T = Radix - T;
  715.     if ((X == U1) && (Y == U1) && (Z == U2) && (T == U2)) GAddSub = Yes;
  716.     else {
  717.         GAddSub = No;
  718.         TstCond (Serious, False,
  719.             "- lacks Guard Digit, so cancellation is obscured");
  720.         }
  721.     if (F9 != One && F9 - One >= Zero) {
  722.         BadCond(Serious, "comparison alleges  (1-U1) < 1  although\n");
  723.         printf("  subtraction yields  (1-U1) - 1 = 0 , thereby vitiating\n");
  724.         printf("  such precautions against division by zero as\n");
  725.         printf("  ...  if (X == 1.0) {.....} else {.../(X-1.0)...}\n");
  726.         }
  727.     if (GMult == Yes && GDiv == Yes && GAddSub == Yes) printf(
  728.         "     *, /, and - appear to have guard digits, as they should.\n");
  729.     /*=============================================*/
  730.     Milestone = 40;
  731.     /*=============================================*/
  732.     Pause();
  733.     printf("Checking rounding on multiply, divide and add/subtract.\n");
  734.     RMult = Other;
  735.     RDiv = Other;
  736.     RAddSub = Other;
  737.     RadixD2 = Radix / Two;
  738.     A1 = Two;
  739.     Done = False;
  740.     do  {
  741.         AInvrse = Radix;
  742.         do  {
  743.             X = AInvrse;
  744.             AInvrse = AInvrse / A1;
  745.             } while ( ! (FLOOR(AInvrse) != AInvrse));
  746.         Done = (X == One) || (A1 > Three);
  747.         if (! Done) A1 = Nine + One;
  748.         } while ( ! (Done));
  749.     if (X == One) A1 = Radix;
  750.     AInvrse = One / A1;
  751.     X = A1;
  752.     Y = AInvrse;
  753.     Done = False;
  754.     do  {
  755.         Z = X * Y - Half;
  756.         TstCond (Failure, Z == Half,
  757.             "X * (1/X) differs from 1");
  758.         Done = X == Radix;
  759.         X = Radix;
  760.         Y = One / X;
  761.         } while ( ! (Done));
  762.     Y2 = One + U2;
  763.     Y1 = One - U2;
  764.     X = OneAndHalf - U2;
  765.     Y = OneAndHalf + U2;
  766.     Z = (X - U2) * Y2;
  767.     T = Y * Y1;
  768.     Z = Z - X;
  769.     T = T - X;
  770.     X = X * Y2;
  771.     Y = (Y + U2) * Y1;
  772.     X = X - OneAndHalf;
  773.     Y = Y - OneAndHalf;
  774.     if ((X == Zero) && (Y == Zero) && (Z == Zero) && (T <= Zero)) {
  775.         X = (OneAndHalf + U2) * Y2;
  776.         Y = OneAndHalf - U2 - U2;
  777.         Z = OneAndHalf + U2 + U2;
  778.         T = (OneAndHalf - U2) * Y1;
  779.         X = X - (Z + U2);
  780.         StickyBit = Y * Y1;
  781.         S = Z * Y2;
  782.         T = T - Y;
  783.         Y = (U2 - Y) + StickyBit;
  784.         Z = S - (Z + U2 + U2);
  785.         StickyBit = (Y2 + U2) * Y1;
  786.         Y1 = Y2 * Y1;
  787.         StickyBit = StickyBit - Y2;
  788.         Y1 = Y1 - Half;
  789.         if ((X == Zero) && (Y == Zero) && (Z == Zero) && (T == Zero)
  790.             && ( StickyBit == Zero) && (Y1 == Half)) {
  791.             RMult = Rounded;
  792.             printf("Multiplication appears to round correctly.\n");
  793.             }
  794.         else    if ((X + U2 == Zero) && (Y < Zero) && (Z + U2 == Zero)
  795.                 && (T < Zero) && (StickyBit + U2 == Zero)
  796.                 && (Y1 < Half)) {
  797.                 RMult = Chopped;
  798.                 printf("Multiplication appears to chop.\n");
  799.                 }
  800.             else printf("* is neither chopped nor correctly rounded.\n");
  801.         if ((RMult == Rounded) && (GMult == No)) notify("Multiplication");
  802.         }
  803.     else printf("* is neither chopped nor correctly rounded.\n");
  804.     /*=============================================*/
  805.     Milestone = 45;
  806.     /*=============================================*/
  807.     Y2 = One + U2;
  808.     Y1 = One - U2;
  809.     Z = OneAndHalf + U2 + U2;
  810.     X = Z / Y2;
  811.     T = OneAndHalf - U2 - U2;
  812.     Y = (T - U2) / Y1;
  813.     Z = (Z + U2) / Y2;
  814.     X = X - OneAndHalf;
  815.     Y = Y - T;
  816.     T = T / Y1;
  817.     Z = Z - (OneAndHalf + U2);
  818.     T = (U2 - OneAndHalf) + T;
  819.     if (! ((X > Zero) || (Y > Zero) || (Z > Zero) || (T > Zero))) {
  820.         X = OneAndHalf / Y2;
  821.         Y = OneAndHalf - U2;
  822.         Z = OneAndHalf + U2;
  823.         X = X - Y;
  824.         T = OneAndHalf / Y1;
  825.         Y = Y / Y1;
  826.         T = T - (Z + U2);
  827.         Y = Y - Z;
  828.         Z = Z / Y2;
  829.         Y1 = (Y2 + U2) / Y2;
  830.         Z = Z - OneAndHalf;
  831.         Y2 = Y1 - Y2;
  832.         Y1 = (F9 - U1) / F9;
  833.         if ((X == Zero) && (Y == Zero) && (Z == Zero) && (T == Zero)
  834.             && (Y2 == Zero) && (Y2 == Zero)
  835.             && (Y1 - Half == F9 - Half )) {
  836.             RDiv = Rounded;
  837.             printf("Division appears to round correctly.\n");
  838.             if (GDiv == No) notify("Division");
  839.             }
  840.         else if ((X < Zero) && (Y < Zero) && (Z < Zero) && (T < Zero)
  841.             && (Y2 < Zero) && (Y1 - Half < F9 - Half)) {
  842.             RDiv = Chopped;
  843.             printf("Division appears to chop.\n");
  844.             }
  845.         }
  846.     if (RDiv == Other) printf("/ is neither chopped nor correctly rounded.\n");
  847.     BInvrse = One / Radix;
  848.     TstCond (Failure, (BInvrse * Radix - Half == Half),
  849.            "Radix * ( 1 / Radix ) differs from 1");
  850.     /*=============================================*/
  851.     /*SPLIT
  852.     }
  853. #include "paranoia.h"
  854. part4(){
  855. */
  856.     Milestone = 50;
  857.     /*=============================================*/
  858.     TstCond (Failure, ((F9 + U1) - Half == Half)
  859.            && ((BMinusU2 + U2 ) - One == Radix - One),
  860.            "Incomplete carry-propagation in Addition");
  861.     X = One - U1 * U1;
  862.     Y = One + U2 * (One - U2);
  863.     Z = F9 - Half;
  864.     X = (X - Half) - Z;
  865.     Y = Y - One;
  866.     if ((X == Zero) && (Y == Zero)) {
  867.         RAddSub = Chopped;
  868.         printf("Add/Subtract appears to be chopped.\n");
  869.         }
  870.     if (GAddSub == Yes) {
  871.         X = (Half + U2) * U2;
  872.         Y = (Half - U2) * U2;
  873.         X = One + X;
  874.         Y = One + Y;
  875.         X = (One + U2) - X;
  876.         Y = One - Y;
  877.         if ((X == Zero) && (Y == Zero)) {
  878.             X = (Half + U2) * U1;
  879.             Y = (Half - U2) * U1;
  880.             X = One - X;
  881.             Y = One - Y;
  882.             X = F9 - X;
  883.             Y = One - Y;
  884.             if ((X == Zero) && (Y == Zero)) {
  885.                 RAddSub = Rounded;
  886.                 printf("Addition/Subtraction appears to round correctly.\n");
  887.                 if (GAddSub == No) notify("Add/Subtract");
  888.                 }
  889.             else printf("Addition/Subtraction neither rounds nor chops.\n");
  890.             }
  891.         else printf("Addition/Subtraction neither rounds nor chops.\n");
  892.         }
  893.     else printf("Addition/Subtraction neither rounds nor chops.\n");
  894.     S = One;
  895.     X = One + Half * (One + Half);
  896.     Y = (One + U2) * Half;
  897.     Z = X - Y;
  898.     T = Y - X;
  899.     StickyBit = Z + T;
  900.     if (StickyBit != Zero) {
  901.         S = Zero;
  902.         BadCond(Flaw, "(X - Y) + (Y - X) is non zero!\n");
  903.         }
  904.     StickyBit = Zero;
  905.     if ((GMult == Yes) && (GDiv == Yes) && (GAddSub == Yes)
  906.         && (RMult == Rounded) && (RDiv == Rounded)
  907.         && (RAddSub == Rounded) && (FLOOR(RadixD2) == RadixD2)) {
  908.         printf("Checking for sticky bit.\n");
  909.         X = (Half + U1) * U2;
  910.         Y = Half * U2;
  911.         Z = One + Y;
  912.         T = One + X;
  913.         if ((Z - One <= Zero) && (T - One >= U2)) {
  914.             Z = T + Y;
  915.             Y = Z - X;
  916.             if ((Z - T >= U2) && (Y - T == Zero)) {
  917.                 X = (Half + U1) * U1;
  918.                 Y = Half * U1;
  919.                 Z = One - Y;
  920.                 T = One - X;
  921.                 if ((Z - One == Zero) && (T - F9 == Zero)) {
  922.                     Z = (Half - U1) * U1;
  923.                     T = F9 - Z;
  924.                     Q = F9 - Y;
  925.                     if ((T - F9 == Zero) && (F9 - U1 - Q == Zero)) {
  926.                         Z = (One + U2) * OneAndHalf;
  927.                         T = (OneAndHalf + U2) - Z + U2;
  928.                         X = One + Half / Radix;
  929.                         Y = One + Radix * U2;
  930.                         Z = X * Y;
  931.                         if (T == Zero && X + Radix * U2 - Z == Zero) {
  932.                             if (Radix != Two) {
  933.                                 X = Two + U2;
  934.                                 Y = X / Two;
  935.                                 if ((Y - One == Zero)) StickyBit = S;
  936.                                 }
  937.                             else StickyBit = S;
  938.                             }
  939.                         }
  940.                     }
  941.                 }
  942.             }
  943.         }
  944.     if (StickyBit == One) printf("Sticky bit apparently used correctly.\n");
  945.     else printf("Sticky bit used incorrectly or not at all.\n");
  946.     TstCond (Flaw, !(GMult == No || GDiv == No || GAddSub == No ||
  947.             RMult == Other || RDiv == Other || RAddSub == Other),
  948.         "lack(s) of guard digits or failure(s) to correctly round or chop\n(noted above) count as one flaw in the final tally below");
  949.     /*=============================================*/
  950.     Milestone = 60;
  951.     /*=============================================*/
  952.     printf("\n");
  953.     printf("Does Multiplication commute?  ");
  954.     printf("Testing on %d random pairs.\n", NoTrials);
  955.     Random9 = SQRT(3.0);
  956.     Random1 = Third;
  957.     I = 1;
  958.     do  {
  959.         X = Random();
  960.         Y = Random();
  961.         Z9 = Y * X;
  962.         Z = X * Y;
  963.         Z9 = Z - Z9;
  964.         I = I + 1;
  965.         } while ( ! ((I > NoTrials) || (Z9 != Zero)));
  966.     if (I == NoTrials) {
  967.         Random1 = One + Half / Three;
  968.         Random2 = (U2 + U1) + One;
  969.         Z = Random1 * Random2;
  970.         Y = Random2 * Random1;
  971.         Z9 = (One + Half / Three) * ((U2 + U1) + One) - (One + Half /
  972.             Three) * ((U2 + U1) + One);
  973.         }
  974.     if (! ((I == NoTrials) || (Z9 == Zero)))
  975.         BadCond(Defect, "X * Y == Y * X trial fails.\n");
  976.     else printf("     No failures found in %d integer pairs.\n", NoTrials);
  977.     /*=============================================*/
  978.     Milestone = 70;
  979.     /*=============================================*/
  980.     printf("\nRunning test of square root(x).\n");
  981.     TstCond (Failure, (Zero == SQRT(Zero))
  982.            && (- Zero == SQRT(- Zero))
  983.            && (One == SQRT(One)), "Square root of 0.0, -0.0 or 1.0 wrong");
  984.     MinSqEr = Zero;
  985.     MaxSqEr = Zero;
  986.     J = Zero;
  987.     X = Radix;
  988.     OneUlp = U2;
  989.     SqXMinX (Serious);
  990.     X = BInvrse;
  991.     OneUlp = BInvrse * U1;
  992.     SqXMinX (Serious);
  993.     X = U1;
  994.     OneUlp = U1 * U1;
  995.     SqXMinX (Serious);
  996.     if (J != Zero) Pause();
  997.     printf("Testing if sqrt(X * X) == X for %d Integers X.\n", NoTrials);
  998.     J = Zero;
  999.     X = Two;
  1000.     Y = Radix;
  1001.     if ((Radix != One)) do  {
  1002.         X = Y;
  1003.         Y = Radix * Y;
  1004.         } while ( ! ((Y - X >= NoTrials)));
  1005.     OneUlp = X * U2;
  1006.     I = 1;
  1007.     while (I <= NoTrials) {
  1008.         X = X + One;
  1009.         SqXMinX (Defect);
  1010.         if (J > Zero) break;
  1011.         I = I + 1;
  1012.         }
  1013.     printf("Test for sqrt monotonicity.\n");
  1014.     I = - 1;
  1015.     X = BMinusU2;
  1016.     Y = Radix;
  1017.     Z = Radix + Radix * U2;
  1018.     NotMonot = False;
  1019.     Monot = False;
  1020.     while ( ! (NotMonot || Monot)) {
  1021.         I = I + 1;
  1022.         X = SQRT(X);
  1023.         Q = SQRT(Y);
  1024.         Z = SQRT(Z);
  1025.         if ((X > Q) || (Q > Z)) NotMonot = True;
  1026.         else {
  1027.             Q = FLOOR(Q + Half);
  1028.             if ((I > 0) || (Radix == Q * Q)) Monot = True;
  1029.             else if (I > 0) {
  1030.             if (I > 1) Monot = True;
  1031.             else {
  1032.                 Y = Y * BInvrse;
  1033.                 X = Y - U1;
  1034.                 Z = Y + U1;
  1035.                 }
  1036.             }
  1037.             else {
  1038.                 Y = Q;
  1039.                 X = Y - U2;
  1040.                 Z = Y + U2;
  1041.                 }
  1042.             }
  1043.         }
  1044.     if (Monot) printf("sqrt has passed a test for Monotonicity.\n");
  1045.     else {
  1046.         BadCond(Defect, "");
  1047.         printf("sqrt(X) is non-monotonic for X near %.7e .\n", Y);
  1048.         }
  1049.     /*=============================================*/
  1050.     /*SPLIT
  1051.     }
  1052. #include "paranoia.h"
  1053. part5(){
  1054. */
  1055.     Milestone = 80;
  1056.     /*=============================================*/
  1057.     MinSqEr = MinSqEr + Half;
  1058.     MaxSqEr = MaxSqEr - Half;
  1059.     Y = (SQRT(One + U2) - One) / U2;
  1060.     SqEr = (Y - One) + U2 / Eight;
  1061.     if (SqEr > MaxSqEr) MaxSqEr = SqEr;
  1062.     SqEr = Y + U2 / Eight;
  1063.     if (SqEr < MinSqEr) MinSqEr = SqEr;
  1064.     Y = ((SQRT(F9) - U2) - (One - U2)) / U1;
  1065.     SqEr = Y + U1 / Eight;
  1066.     if (SqEr > MaxSqEr) MaxSqEr = SqEr;
  1067.     SqEr = (Y + One) + U1 / Eight;
  1068.     if (SqEr < MinSqEr) MinSqEr = SqEr;
  1069.     OneUlp = U2;
  1070.     X = OneUlp;
  1071.     for( Indx = 1; Indx <= 3; ++Indx) {
  1072.         Y = SQRT((X + U1 + X) + F9);
  1073.         Y = ((Y - U2) - ((One - U2) + X)) / OneUlp;
  1074.         Z = ((U1 - X) + F9) * Half * X * X / OneUlp;
  1075.         SqEr = (Y + Half) + Z;
  1076.         if (SqEr < MinSqEr) MinSqEr = SqEr;
  1077.         SqEr = (Y - Half) + Z;
  1078.         if (SqEr > MaxSqEr) MaxSqEr = SqEr;
  1079.         if (((Indx == 1) || (Indx == 3))) 
  1080.             X = OneUlp * Sign (X) * FLOOR(Eight / (Nine * SQRT(OneUlp)));
  1081.         else {
  1082.             OneUlp = U1;
  1083.             X = - OneUlp;
  1084.             }
  1085.         }
  1086.     /*=============================================*/
  1087.     Milestone = 85;
  1088.     /*=============================================*/
  1089.     SqRWrng = False;
  1090.     Anomaly = False;
  1091.     RSqrt = Other; /* ~dgh */
  1092.     if (Radix != One) {
  1093.         printf("Testing whether sqrt is rounded or chopped.\n");
  1094.         D = FLOOR(Half + POW(Radix, One + Precision - FLOOR(Precision)));
  1095.     /* ... == Radix^(1 + fract) if (Precision == Integer + fract. */
  1096.         X = D / Radix;
  1097.         Y = D / A1;
  1098.         if ((X != FLOOR(X)) || (Y != FLOOR(Y))) {
  1099.             Anomaly = True;
  1100.             }
  1101.         else {
  1102.             X = Zero;
  1103.             Z2 = X;
  1104.             Y = One;
  1105.             Y2 = Y;
  1106.             Z1 = Radix - One;
  1107.             FourD = Four * D;
  1108.             do  {
  1109.                 if (Y2 > Z2) {
  1110.                     Q = Radix;
  1111.                     Y1 = Y;
  1112.                     do  {
  1113.                         X1 = FABS(Q + FLOOR(Half - Q / Y1) * Y1);
  1114.                         Q = Y1;
  1115.                         Y1 = X1;
  1116.                         } while ( ! (X1 <= Zero));
  1117.                     if (Q <= One) {
  1118.                         Z2 = Y2;
  1119.                         Z = Y;
  1120.                         }
  1121.                     }
  1122.                 Y = Y + Two;
  1123.                 X = X + Eight;
  1124.                 Y2 = Y2 + X;
  1125.                 if (Y2 >= FourD) Y2 = Y2 - FourD;
  1126.                 } while ( ! (Y >= D));
  1127.             X8 = FourD - Z2;
  1128.             Q = (X8 + Z * Z) / FourD;
  1129.             X8 = X8 / Eight;
  1130.             if (Q != FLOOR(Q)) Anomaly = True;
  1131.             else {
  1132.                 Break = False;
  1133.                 do  {
  1134.                     X = Z1 * Z;
  1135.                     X = X - FLOOR(X / Radix) * Radix;
  1136.                     if (X == One) 
  1137.                         Break = True;
  1138.                     else
  1139.                         Z1 = Z1 - One;
  1140.                     } while ( ! (Break || (Z1 <= Zero)));
  1141.                 if ((Z1 <= Zero) && (! Break)) Anomaly = True;
  1142.                 else {
  1143.                     if (Z1 > RadixD2) Z1 = Z1 - Radix;
  1144.                     do  {
  1145.                         NewD();
  1146.                         } while ( ! (U2 * D >= F9));
  1147.                     if (D * Radix - D != W - D) Anomaly = True;
  1148.                     else {
  1149.                         Z2 = D;
  1150.                         I = 0;
  1151.                         Y = D + (One + Z) * Half;
  1152.                         X = D + Z + Q;
  1153.                         SR3750();
  1154.                         Y = D + (One - Z) * Half + D;
  1155.                         X = D - Z + D;
  1156.                         X = X + Q + X;
  1157.                         SR3750();
  1158.                         NewD();
  1159.                         if (D - Z2 != W - Z2) Anomaly = True;
  1160.                         else {
  1161.                             Y = (D - Z2) + (Z2 + (One - Z) * Half);
  1162.                             X = (D - Z2) + (Z2 - Z + Q);
  1163.                             SR3750();
  1164.                             Y = (One + Z) * Half;
  1165.                             X = Q;
  1166.                             SR3750();
  1167.                             if (I == 0) Anomaly = True;
  1168.                             }
  1169.                         }
  1170.                     }
  1171.                 }
  1172.             }
  1173.         if ((I == 0) || Anomaly) {
  1174.             BadCond(Failure, "Anomalous arithmetic with Integer < ");
  1175.             printf("Radix^Precision = %.7e\n", W);
  1176.             printf(" fails test whether sqrt rounds or chops.\n");
  1177.             SqRWrng = True;
  1178.             }
  1179.         }
  1180.     if (! Anomaly) {
  1181.         if (! ((MinSqEr < Zero) || (MaxSqEr > Zero))) {
  1182.             RSqrt = Rounded;
  1183.             printf("Square root appears to be correctly rounded.\n");
  1184.             }
  1185.         else  {
  1186.             if ((MaxSqEr + U2 > U2 - Half) || (MinSqEr > Half)
  1187.                 || (MinSqEr + Radix < Half)) SqRWrng = True;
  1188.             else {
  1189.                 RSqrt = Chopped;
  1190.                 printf("Square root appears to be chopped.\n");
  1191.                 }
  1192.             }
  1193.         }
  1194.     if (SqRWrng) {
  1195.         printf("Square root is neither chopped nor correctly rounded.\n");
  1196.         printf("Observed errors run from %.7e ", MinSqEr - Half);
  1197.         printf("to %.7e ulps.\n", Half + MaxSqEr);
  1198.         TstCond (Serious, MaxSqEr - MinSqEr < Radix * Radix,
  1199.             "sqrt gets too many last digits wrong");
  1200.         }
  1201.     /*=============================================*/
  1202.     Milestone = 90;
  1203.     /*=============================================*/
  1204.     Pause();
  1205.     printf("Testing powers Z^i for small Integers Z and i.\n");
  1206.     N = 0;
  1207.     /* ... test powers of zero. */
  1208.     I = 0;
  1209.     Z = -Zero;
  1210.     M = 3.0;
  1211.     Break = False;
  1212.     do  {
  1213.         X = One;
  1214.         SR3980();
  1215.         if (I <= 10) {
  1216.             I = 1023;
  1217.             SR3980();
  1218.             }
  1219.         if (Z == MinusOne) Break = True;
  1220.         else {
  1221.             Z = MinusOne;
  1222.             PrintIfNPositive();
  1223.             N = 0;
  1224.             /* .. if(-1)^N is invalid, replace MinusOne by One. */
  1225.             I = - 4;
  1226.             }
  1227.         } while ( ! Break);
  1228.     PrintIfNPositive();
  1229.     N1 = N;
  1230.     N = 0;
  1231.     Z = A1;
  1232.     M = FLOOR(Two * LOG(W) / LOG(A1));
  1233.     Break = False;
  1234.     do  {
  1235.         X = Z;
  1236.         I = 1;
  1237.         SR3980();
  1238.         if (Z == AInvrse) Break = True;
  1239.         else Z = AInvrse;
  1240.         } while ( ! (Break));
  1241.     /*=============================================*/
  1242.         Milestone = 100;
  1243.     /*=============================================*/
  1244.     /*  Powers of Radix have been tested, */
  1245.     /*         next try a few primes     */
  1246.     M = NoTrials;
  1247.     Z = Three;
  1248.     do  {
  1249.         X = Z;
  1250.         I = 1;
  1251.         SR3980();
  1252.         do  {
  1253.             Z = Z + Two;
  1254.             } while ( Three * FLOOR(Z / Three) == Z );
  1255.         } while ( Z < Eight * Three );
  1256.     if (N > 0) {
  1257.         printf("Errors like this may invalidate financial calculations\n");
  1258.         printf("\tinvolving interest rates.\n");
  1259.         }
  1260.     PrintIfNPositive();
  1261.     N += N1;
  1262.     if (N == 0) printf("... no discrepancis found.\n");
  1263.     if (N > 0) Pause();
  1264.     else printf("\n");
  1265.     /*=============================================*/
  1266.     /*SPLIT
  1267.     }
  1268. #include "paranoia.h"
  1269. part6(){
  1270. */
  1271.     Milestone = 110;
  1272.     /*=============================================*/
  1273.     printf("Seeking Underflow thresholds UfThold and E0.\n");
  1274.     D = U1;
  1275.     if (Precision != FLOOR(Precision)) {
  1276.         D = BInvrse;
  1277.         X = Precision;
  1278.         do  {
  1279.             D = D * BInvrse;
  1280.             X = X - One;
  1281.             } while ( X > Zero);
  1282.         }
  1283.     Y = One;
  1284.     Z = D;
  1285.     /* ... D is power of 1/Radix < 1. */
  1286.     do  {
  1287.         C = Y;
  1288.         Y = Z;
  1289.         Z = Y * Y;
  1290.         } while ((Y > Z) && (Z + Z > Z));
  1291.     Y = C;
  1292.     Z = Y * D;
  1293.     do  {
  1294.         C = Y;
  1295.         Y = Z;
  1296.         Z = Y * D;
  1297.         } while ((Y > Z) && (Z + Z > Z));
  1298.     if (Radix < Two) HInvrse = Two;
  1299.     else HInvrse = Radix;
  1300.     H = One / HInvrse;
  1301.     /* ... 1/HInvrse == H == Min(1/Radix, 1/2) */
  1302.     CInvrse = One / C;
  1303.     E0 = C;
  1304.     Z = E0 * H;
  1305.     /* ...1/Radix^(BIG Integer) << 1 << CInvrse == 1/C */
  1306.     do  {
  1307.         Y = E0;
  1308.         E0 = Z;
  1309.         Z = E0 * H;
  1310.         } while ((E0 > Z) && (Z + Z > Z));
  1311.     UfThold = E0;
  1312.     E1 = Zero;
  1313.     Q = Zero;
  1314.     E9 = U2;
  1315.     S = One + E9;
  1316.     D = C * S;
  1317.     if (D <= C) {
  1318.         E9 = Radix * U2;
  1319.         S = One + E9;
  1320.         D = C * S;
  1321.         if (D <= C) {
  1322.             BadCond(Failure, "multiplication gets too many last digits wrong.\n");
  1323.             Underflow = E0;
  1324.             Y1 = Zero;
  1325.             PseudoZero = Z;
  1326.             Pause();
  1327.             }
  1328.         }
  1329.     else {
  1330.         Underflow = D;
  1331.         PseudoZero = Underflow * H;
  1332.         UfThold = Zero;
  1333.         do  {
  1334.             Y1 = Underflow;
  1335.             Underflow = PseudoZero;
  1336.             if (E1 + E1 <= E1) {
  1337.                 Y2 = Underflow * HInvrse;
  1338.                 E1 = FABS(Y1 - Y2);
  1339.                 Q = Y1;
  1340.                 if ((UfThold == Zero) && (Y1 != Y2)) UfThold = Y1;
  1341.                 }
  1342.             PseudoZero = PseudoZero * H;
  1343.             } while ((Underflow > PseudoZero)
  1344.                 && (PseudoZero + PseudoZero > PseudoZero));
  1345.         }
  1346.     /* Comment line 4530 .. 4560 */
  1347.     if (PseudoZero != Zero) {
  1348.         printf("\n");
  1349.         Z = PseudoZero;
  1350.     /* ... Test PseudoZero for "phoney- zero" violates */
  1351.     /* ... PseudoZero < Underflow or PseudoZero < PseudoZero + PseudoZero
  1352.            ... */
  1353.         if (PseudoZero <= Zero) {
  1354.             BadCond(Failure, "Positive expressions can underflow to an\n");
  1355.             printf("allegedly negative value\n");
  1356.             printf("PseudoZero that prints out as: %g .\n", PseudoZero);
  1357.             X = - PseudoZero;
  1358.             if (X <= Zero) {
  1359.                 printf("But -PseudoZero, which should be\n");
  1360.                 printf("positive, isn't; it prints out as  %g .\n", X);
  1361.                 }
  1362.             }
  1363.         else {
  1364.             BadCond(Flaw, "Underflow can stick at an allegedly positive\n");
  1365.             printf("value PseudoZero that prints out as %g .\n", PseudoZero);
  1366.             }
  1367.         TstPtUf();
  1368.         }
  1369.     /*=============================================*/
  1370.     Milestone = 120;
  1371.     /*=============================================*/
  1372.     if (CInvrse * Y > CInvrse * Y1) {
  1373.         S = H * S;
  1374.         E0 = Underflow;
  1375.         }
  1376.     if (! ((E1 == Zero) || (E1 == E0))) {
  1377.         BadCond(Defect, "");
  1378.         if (E1 < E0) {
  1379.             printf("Products underflow at a higher");
  1380.             printf(" threshold than differences.\n");
  1381.             if (PseudoZero == Zero) 
  1382.             E0 = E1;
  1383.             }
  1384.         else {
  1385.             printf("Difference underflows at a higher");
  1386.             printf(" threshold than products.\n");
  1387.             }
  1388.         }
  1389.     printf("Smallest strictly positive number found is E0 = %g .\n", E0);
  1390.     Z = E0;
  1391.     TstPtUf();
  1392.     Underflow = E0;
  1393.     if (N == 1) Underflow = Y;
  1394.     I = 4;
  1395.     if (E1 == Zero) I = 3;
  1396.     if (UfThold == Zero) I = I - 2;
  1397.     UfNGrad = True;
  1398.     switch (I)  {
  1399.         case    1:
  1400.         UfThold = Underflow;
  1401.         if ((CInvrse * Q) != ((CInvrse * Y) * S)) {
  1402.             UfThold = Y;
  1403.             BadCond(Failure, "Either accuracy deteriorates as numbers\n");
  1404.             printf("approach a threshold = %.17e\n", UfThold);;
  1405.             printf(" coming down from %.17e\n", C);
  1406.             printf(" or else multiplication gets too many last digits wrong.\n");
  1407.             }
  1408.         Pause();
  1409.         break;
  1410.     
  1411.         case    2:
  1412.         BadCond(Failure, "Underflow confuses Comparison, which alleges that\n");
  1413.         printf("Q == Y while denying that |Q - Y| == 0; these values\n");
  1414.         printf("print out as Q = %.17e, Y = %.17e .\n", Q, Y2);
  1415.         printf ("|Q - Y| = %.17e .\n" , FABS(Q - Y2));
  1416.         UfThold = Q;
  1417.         break;
  1418.     
  1419.         case    3:
  1420.         X = X;
  1421.         break;
  1422.     
  1423.         case    4:
  1424.         if ((Q == UfThold) && (E1 == E0)
  1425.             && (FABS( UfThold - E1 / E9) <= E1)) {
  1426.             UfNGrad = False;
  1427.             printf("Underflow is gradual; it incurs Absolute Error =\n");
  1428.             printf("(roundoff in UfThold) < E0.\n");
  1429.             Y = E0 * CInvrse;
  1430.             Y = Y * (OneAndHalf + U2);
  1431.             X = CInvrse * (One + U2);
  1432.             Y = Y / X;
  1433.             IEEE = (Y == E0);
  1434.             }
  1435.         }
  1436.     if (UfNGrad) {
  1437.         printf("\n");
  1438.         sigsave = sigfpe;
  1439.         if (setjmp(ovfl_buf)) {
  1440.             printf("Underflow / UfThold failed!\n");
  1441.             R = H + H;
  1442.             }
  1443.         else R = SQRT(Underflow / UfThold);
  1444.         sigsave = 0;
  1445.         if (R <= H) {
  1446.             Z = R * UfThold;
  1447.             X = Z * (One + R * H * (One + H));
  1448.             }
  1449.         else {
  1450.             Z = UfThold;
  1451.             X = Z * (One + H * H * (One + H));
  1452.             }
  1453.         if (! ((X == Z) || (X - Z != Zero))) {
  1454.             BadCond(Flaw, "");
  1455.             printf("X = %.17e\n\tis not equal to Z = %.17e .\n", X, Z);
  1456.             Z9 = X - Z;
  1457.             printf("yet X - Z yields %.17e .\n", Z9);
  1458.             printf("    Should this NOT signal Underflow, ");
  1459.             printf("this is a SERIOUS DEFECT\nthat causes ");
  1460.             printf("confusion when innocent statements like\n");;
  1461.             printf("    if (X == Z)  ...  else");
  1462.             printf("  ... (f(X) - f(Z)) / (X - Z) ...\n");
  1463.             printf("encounter Division by Zero although actually\n");
  1464.             sigsave = sigfpe;
  1465.             if (setjmp(ovfl_buf)) printf("X / Z fails!\n");
  1466.             else printf("X / Z = 1 + %g .\n", (X / Z - Half) - Half);
  1467.             sigsave = 0;
  1468.             }
  1469.         }
  1470.     printf("The Underflow threshold is %.17e, %s\n", UfThold,
  1471.            " below which");
  1472.     printf("calculation may suffer larger Relative error than ");
  1473.     printf("merely roundoff.\n");
  1474.     Y2 = U1 * U1;
  1475.     Y = Y2 * Y2;
  1476.     Y2 = Y * U1;
  1477.     if (Y2 <= UfThold) {
  1478.         if (Y > E0) {
  1479.             BadCond(Defect, "");
  1480.             I = 5;
  1481.             }
  1482.         else {
  1483.             BadCond(Serious, "");
  1484.             I = 4;
  1485.             }
  1486.         printf("Range is too narrow; U1^%d Underflows.\n", I);
  1487.         }
  1488.     /*=============================================*/
  1489.     /*SPLIT
  1490.     }
  1491. #include "paranoia.h"
  1492. part7(){
  1493. */
  1494.     Milestone = 130;
  1495.     /*=============================================*/
  1496.     Y = - FLOOR(Half - TwoForty * LOG(UfThold) / LOG(HInvrse)) / TwoForty;
  1497.     Y2 = Y + Y;
  1498.     printf("Since underflow occurs below the threshold\n");
  1499.     printf("UfThold = (%.17e) ^ (%.17e)\nonly underflow ", HInvrse, Y);
  1500.     printf("should afflict the expression\n\t(%.17e) ^ (%.17e);\n", HInvrse, Y);
  1501.     V9 = POW(HInvrse, Y2);
  1502.     printf("actually calculating yields: %.17e .\n", V9);
  1503.     if (! ((V9 >= Zero) && (V9 <= (Radix + Radix + E9) * UfThold))) {
  1504.         BadCond(Serious, "this is not between 0 and underflow\n");
  1505.         printf("   threshold = %.17e .\n", UfThold);
  1506.         }
  1507.     else if (! (V9 > UfThold * (One + E9)))
  1508.         printf("This computed value is O.K.\n");
  1509.     else {
  1510.         BadCond(Defect, "this is not between 0 and underflow\n");
  1511.         printf("   threshold = %.17e .\n", UfThold);
  1512.         }
  1513.     /*=============================================*/
  1514.     Milestone = 140;
  1515.     /*=============================================*/
  1516.     printf("\n");
  1517.     /* ...calculate Exp2 == exp(2) == 7.389056099... */
  1518.     X = Zero;
  1519.     I = 2;
  1520.     Y = Two * Three;
  1521.     Q = Zero;
  1522.     N = 0;
  1523.     do  {
  1524.         Z = X;
  1525.         I = I + 1;
  1526.         Y = Y / (I + I);
  1527.         R = Y + Q;
  1528.         X = Z + R;
  1529.         Q = (Z - X) + R;
  1530.         } while(X > Z);
  1531.     Z = (OneAndHalf + One / Eight) + X / (OneAndHalf * ThirtyTwo);
  1532.     X = Z * Z;
  1533.     Exp2 = X * X;
  1534.     X = F9;
  1535.     Y = X - U1;
  1536.     printf("Testing X^((X + 1) / (X - 1)) vs. exp(2) = %.17e as X -> 1.\n",
  1537.         Exp2);
  1538.     for(I = 1;;) {
  1539.         Z = X - BInvrse;
  1540.         Z = (X + One) / (Z - (One - BInvrse));
  1541.         Q = POW(X, Z) - Exp2;
  1542.         if (FABS(Q) > TwoForty * U2) {
  1543.             N = 1;
  1544.              V9 = (X - BInvrse) - (One - BInvrse);
  1545.             BadCond(Defect, "Calculated");
  1546.             printf(" %.17e for\n", POW(X,Z));
  1547.             printf("\t(1 + (%.17e) ^ (%.17e);\n", V9, Z);
  1548.             printf("\tdiffers from correct value by %.17e .\n", Q);
  1549.             printf("\tThis much error may spoil financial\n");
  1550.             printf("\tcalculations involving tiny interest rates.\n");
  1551.             break;
  1552.             }
  1553.         else {
  1554.             Z = (Y - X) * Two + Y;
  1555.             X = Y;
  1556.             Y = Z;
  1557.             Z = One + (X - F9)*(X - F9);
  1558.             if (Z > One && I < NoTrials) I++;
  1559.             else  {
  1560.                 if (X > One) {
  1561.                     if (N == 0)
  1562.                        printf("Accuracy seems adequate.\n");
  1563.                     break;
  1564.                     }
  1565.                 else {
  1566.                     X = One + U2;
  1567.                     Y = U2 + U2;
  1568.                     Y += X;
  1569.                     I = 1;
  1570.                     }
  1571.                 }
  1572.             }
  1573.         }
  1574.     /*=============================================*/
  1575.     Milestone = 150;
  1576.     /*=============================================*/
  1577.     printf("Testing powers Z^Q at four nearly extreme values.\n");
  1578.     N = 0;
  1579.     Z = A1;
  1580.     Q = FLOOR(Half - LOG(C) / LOG(A1));
  1581.     Break = False;
  1582.     do  {
  1583.         X = CInvrse;
  1584.         Y = POW(Z, Q);
  1585.         IsYeqX();
  1586.         Q = - Q;
  1587.         X = C;
  1588.         Y = POW(Z, Q);
  1589.         IsYeqX();
  1590.         if (Z < One) Break = True;
  1591.         else Z = AInvrse;
  1592.         } while ( ! (Break));
  1593.     PrintIfNPositive();
  1594.     if (N == 0) printf(" ... no discrepancies found.\n");
  1595.     printf("\n");
  1596.     
  1597.     /*=============================================*/
  1598.     Milestone = 160;
  1599.     /*=============================================*/
  1600.     Pause();
  1601.     printf("Searching for Overflow threshold:\n");
  1602.     printf("This may generate an error.\n");
  1603.     Y = - CInvrse;
  1604.     V9 = HInvrse * Y;
  1605.     sigsave = sigfpe;
  1606.     if (setjmp(ovfl_buf)) { I = 0; V9 = Y; goto overflow; }
  1607.     do {
  1608.         V = Y;
  1609.         Y = V9;
  1610.         V9 = HInvrse * Y;
  1611.         } while(V9 < Y);
  1612.     I = 1;
  1613. overflow:
  1614.     sigsave = 0;
  1615.     Z = V9;
  1616.     printf("Can `Z = -Y' overflow?\n");
  1617.     printf("Trying it on Y = %.17e .\n", Y);
  1618.     V9 = - Y;
  1619.     V0 = V9;
  1620.     if (V - Y == V + V0) printf("Seems O.K.\n");
  1621.     else {
  1622.         printf("finds a ");
  1623.         BadCond(Flaw, "-(-Y) differs from Y.\n");
  1624.         }
  1625.     if (Z != Y) {
  1626.         BadCond(Serious, "");
  1627.         printf("overflow past %.17e\n\tshrinks to %.17e .\n", Y, Z);
  1628.         }
  1629.     if (I) {
  1630.         Y = V * (HInvrse * U2 - HInvrse);
  1631.         Z = Y + ((One - HInvrse) * U2) * V;
  1632.         if (Z < V0) Y = Z;
  1633.         if (Y < V0) V = Y;
  1634.         if (V0 - V < V0) V = V0;
  1635.         }
  1636.     else {
  1637.         V = Y * (HInvrse * U2 - HInvrse);
  1638.         V = V + ((One - HInvrse) * U2) * Y;
  1639.         }
  1640.     printf("Overflow threshold is V  = %.17e .\n", V);
  1641.     if (I) printf("Overflow saturates at V0 = %.17e .\n", V0);
  1642.     else printf("There is no saturation value because the system traps on overflow.\n");
  1643.     V9 = V * One;
  1644.     printf("No Overflow should be signaled for V * 1 = %.17e\n", V9);
  1645.     V9 = V / One;
  1646.     printf("                           nor for V / 1 = %.17e .\n", V9);
  1647.     printf("Any overflow signal separating this * from the one\n");
  1648.     printf("above is a DEFECT.\n");
  1649.     /*=============================================*/
  1650.     Milestone = 170;
  1651.     /*=============================================*/
  1652.     if (!(-V < V && -V0 < V0 && -UfThold < V && UfThold < V)) {
  1653.         BadCond(Failure, "Comparisons involving ");
  1654.         printf("+-%g, +-%g\nand +-%g are confused by Overflow.",
  1655.             V, V0, UfThold);
  1656.         }
  1657.     /*=============================================*/
  1658.     Milestone = 175;
  1659.     /*=============================================*/
  1660.     printf("\n");
  1661.     for(Indx = 1; Indx <= 3; ++Indx) {
  1662.         switch (Indx)  {
  1663.             case 1: Z = UfThold; break;
  1664.             case 2: Z = E0; break;
  1665.             case 3: Z = PseudoZero; break;
  1666.             }
  1667.         if (Z != Zero) {
  1668.             V9 = SQRT(Z);
  1669.             Y = V9 * V9;
  1670.             if (Y / (One - Radix * E9) < Z
  1671.                || Y > (One + Radix * E9) * Z) { /* dgh: + E9 --> * E9 */
  1672.                 if (V9 > U1) BadCond(Serious, "");
  1673.                 else BadCond(Defect, "");
  1674.                 printf("Comparison alleges that what prints as Z = %.17e\n", Z);
  1675.                 printf(" is too far from sqrt(Z) ^ 2 = %.17e .\n", Y);
  1676.                 }
  1677.             }
  1678.         }
  1679.     /*=============================================*/
  1680.     Milestone = 180;
  1681.     /*=============================================*/
  1682.     for(Indx = 1; Indx <= 2; ++Indx) {
  1683.         if (Indx == 1) Z = V;
  1684.         else Z = V0;
  1685.         V9 = SQRT(Z);
  1686.         X = (One - Radix * E9) * V9;
  1687.         V9 = V9 * X;
  1688.         if (((V9 < (One - Two * Radix * E9) * Z) || (V9 > Z))) {
  1689.             Y = V9;
  1690.             if (X < W) BadCond(Serious, "");
  1691.             else BadCond(Defect, "");
  1692.             printf("Comparison alleges that Z = %17e\n", Z);
  1693.             printf(" is too far from sqrt(Z) ^ 2 (%.17e) .\n", Y);
  1694.             }
  1695.         }
  1696.     /*=============================================*/
  1697.     /*SPLIT
  1698.     }
  1699. #include "paranoia.h"
  1700. part8(){
  1701. */
  1702.     Milestone = 190;
  1703.     /*=============================================*/
  1704.     Pause();
  1705.     X = UfThold * V;
  1706.     Y = Radix * Radix;
  1707.     if (X*Y < One || X > Y) {
  1708.         if (X * Y < U1 || X > Y/U1) BadCond(Defect, "Badly");
  1709.         else BadCond(Flaw, "");
  1710.             
  1711.         printf(" unbalanced range; UfThold * V = %.17e\n\t%s\n",
  1712.             X, "is too far from 1.\n");
  1713.         }
  1714.     /*=============================================*/
  1715.     Milestone = 200;
  1716.     /*=============================================*/
  1717.     for (Indx = 1; Indx <= 5; ++Indx)  {
  1718.         X = F9;
  1719.         switch (Indx)  {
  1720.             case 2: X = One + U2; break;
  1721.             case 3: X = V; break;
  1722.             case 4: X = UfThold; break;
  1723.             case 5: X = Radix;
  1724.             }
  1725.         Y = X;
  1726.         sigsave = sigfpe;
  1727.         if (setjmp(ovfl_buf))
  1728.             printf("  X / X  traps when X = %g\n", X);
  1729.         else {
  1730.             V9 = (Y / X - Half) - Half;
  1731.             if (V9 == Zero) continue;
  1732.             if (V9 == - U1 && Indx < 5) BadCond(Flaw, "");
  1733.             else BadCond(Serious, "");
  1734.             printf("  X / X differs from 1 when X = %.17e\n", X);
  1735.             printf("  instead, X / X - 1/2 - 1/2 = %.17e .\n", V9);
  1736.             }
  1737.         sigsave = 0;
  1738.         }
  1739.     /*=============================================*/
  1740.     Milestone = 210;
  1741.     /*=============================================*/
  1742.     MyZero = Zero;
  1743.     printf("\n");
  1744.     printf("What message and/or values does Division by Zero produce?\n") ;
  1745. #ifndef NOPAUSE
  1746.     printf("This can interupt your program.  You can ");
  1747.     printf("skip this part if you wish.\n");
  1748.     printf("Do you wish to compute 1 / 0? ");
  1749.     fflush(stdout);
  1750.     read (KEYBOARD, ch, 8);
  1751.     if ((ch[0] == 'Y') || (ch[0] == 'y')) {
  1752. #endif
  1753.         sigsave = sigfpe;
  1754.         printf("    Trying to compute 1 / 0 produces ...");
  1755.         if (!setjmp(ovfl_buf)) printf("  %.7e .\n", One / MyZero);
  1756.         sigsave = 0;
  1757. #ifndef NOPAUSE
  1758.         }
  1759.     else printf("O.K.\n");
  1760.     printf("\nDo you wish to compute 0 / 0? ");
  1761.     fflush(stdout);
  1762.     read (KEYBOARD, ch, 80);
  1763.     if ((ch[0] == 'Y') || (ch[0] == 'y')) {
  1764. #endif
  1765.         sigsave = sigfpe;
  1766.         printf("\n    Trying to compute 0 / 0 produces ...");
  1767.         if (!setjmp(ovfl_buf)) printf("  %.7e .\n", Zero / MyZero);
  1768.         sigsave = 0;
  1769. #ifndef NOPAUSE
  1770.         }
  1771.     else printf("O.K.\n");
  1772. #endif
  1773.     /*=============================================*/
  1774.     Milestone = 220;
  1775.     /*=============================================*/
  1776.     Pause();
  1777.     printf("\n");
  1778.     {
  1779.         static char *msg[] = {
  1780.             "FAILUREs  encountered =",
  1781.             "SERIOUS DEFECTs  discovered =",
  1782.             "DEFECTs  discovered =",
  1783.             "FLAWs  discovered =" };
  1784.         int i;
  1785.         for(i = 0; i < 4; i++) if (ErrCnt[i])
  1786.             printf("The number of  %-29s %d.\n",
  1787.                 msg[i], ErrCnt[i]);
  1788.         }
  1789.     printf("\n");
  1790.     if ((ErrCnt[Failure] + ErrCnt[Serious] + ErrCnt[Defect]
  1791.             + ErrCnt[Flaw]) > 0) {
  1792.         if ((ErrCnt[Failure] + ErrCnt[Serious] + ErrCnt[
  1793.             Defect] == 0) && (ErrCnt[Flaw] > 0)) {
  1794.             printf("The arithmetic diagnosed seems ");
  1795.             printf("Satisfactory though flawed.\n");
  1796.             }
  1797.         if ((ErrCnt[Failure] + ErrCnt[Serious] == 0)
  1798.             && ( ErrCnt[Defect] > 0)) {
  1799.             printf("The arithmetic diagnosed may be Acceptable\n");
  1800.             printf("despite inconvenient Defects.\n");
  1801.             }
  1802.         if ((ErrCnt[Failure] + ErrCnt[Serious]) > 0) {
  1803.             printf("The arithmetic diagnosed has ");
  1804.             printf("unacceptable Serious Defects.\n");
  1805.             }
  1806.         if (ErrCnt[Failure] > 0) {
  1807.             printf("Potentially fatal FAILURE may have spoiled this");
  1808.             printf(" program's subsequent diagnoses.\n");
  1809.             }
  1810.         }
  1811.     else {
  1812.         printf("No failures, defects nor flaws have been discovered.\n");
  1813.         if (! ((RMult == Rounded) && (RDiv == Rounded)
  1814.             && (RAddSub == Rounded) && (RSqrt == Rounded))) 
  1815.             printf("The arithmetic diagnosed seems Satisfactory.\n");
  1816.         else {
  1817.             if (StickyBit >= One &&
  1818.                 (Radix - Two) * (Radix - Nine - One) == Zero) {
  1819.                 printf("Rounding appears to conform to ");
  1820.                 printf("the proposed IEEE standard P");
  1821.                 if ((Radix == Two) &&
  1822.                      ((Precision - Four * Three * Two) *
  1823.                       ( Precision - TwentySeven -
  1824.                        TwentySeven + One) == Zero)) 
  1825.                     printf("754");
  1826.                 else printf("854");
  1827.                 if (IEEE) printf(".\n");
  1828.                 else {
  1829.                     printf(",\nexcept for possibly Double Rounding");
  1830.                     printf(" during Gradual Underflow.\n");
  1831.                     }
  1832.                 }
  1833.             printf("The arithmetic diagnosed appears to be Excellent!\n");
  1834.             }
  1835.         }
  1836.     if (fpecount)
  1837.         printf("\nA total of %d floating point exceptions were registered.\n",
  1838.             fpecount);
  1839.     printf("END OF TEST.\n");
  1840.     return 0;
  1841.     }
  1842.  
  1843. /*SPLIT subs.c
  1844. #include "paranoia.h"
  1845. */
  1846.  
  1847. /* Sign */
  1848.  
  1849. FLOAT Sign (X)
  1850. FLOAT X;
  1851. { return X >= 0. ? 1.0 : -1.0; }
  1852.  
  1853. /* Pause */
  1854.  
  1855. Pause()
  1856. {
  1857. #ifndef NOPAUSE
  1858.     char ch[8];
  1859.  
  1860.     printf("\nTo continue, press RETURN");
  1861.     fflush(stdout);
  1862.     read(KEYBOARD, ch, 8);
  1863. #endif
  1864.     printf("\nDiagnosis resumes after milestone Number %d", Milestone);
  1865.     printf("          Page: %d\n\n", PageNo);
  1866.     ++Milestone;
  1867.     ++PageNo;
  1868.     }
  1869.  
  1870.  /* TstCond */
  1871.  
  1872. TstCond (K, Valid, T)
  1873. int K, Valid;
  1874. char *T;
  1875. { if (! Valid) { BadCond(K,T); printf(".\n"); } }
  1876.  
  1877. BadCond(K, T)
  1878. int K;
  1879. char *T;
  1880. {
  1881.     static char *msg[] = { "FAILURE", "SERIOUS DEFECT", "DEFECT", "FLAW" };
  1882.  
  1883.     ErrCnt [K] = ErrCnt [K] + 1;
  1884.     printf("%s:  %s", msg[K], T);
  1885.     }
  1886.  
  1887. /* Random */
  1888. /*  Random computes
  1889.      X = (Random1 + Random9)^5
  1890.      Random1 = X - FLOOR(X) + 0.000005 * X;
  1891.    and returns the new value of Random1
  1892. */
  1893.  
  1894. FLOAT Random()
  1895. {
  1896.     FLOAT X, Y;
  1897.     
  1898.     X = Random1 + Random9;
  1899.     Y = X * X;
  1900.     Y = Y * Y;
  1901.     X = X * Y;
  1902.     Y = X - FLOOR(X);
  1903.     Random1 = Y + X * 0.000005;
  1904.     return(Random1);
  1905.     }
  1906.  
  1907. /* SqXMinX */
  1908.  
  1909. SqXMinX (ErrKind)
  1910. int ErrKind;
  1911. {
  1912.     FLOAT XA, XB;
  1913.     
  1914.     XB = X * BInvrse;
  1915.     XA = X - XB;
  1916.     SqEr = ((SQRT(X * X) - XB) - XA) / OneUlp;
  1917.     if (SqEr != Zero) {
  1918.         if (SqEr < MinSqEr) MinSqEr = SqEr;
  1919.         if (SqEr > MaxSqEr) MaxSqEr = SqEr;
  1920.         J = J + 1.0;
  1921.         BadCond(ErrKind, "\n");
  1922.         printf("sqrt( %.17e) - %.17e  = %.17e\n", X * X, X, OneUlp * SqEr);
  1923.         printf("\tinstead of correct value 0 .\n");
  1924.         }
  1925.     }
  1926.  
  1927. /* NewD */
  1928.  
  1929. NewD()
  1930. {
  1931.     X = Z1 * Q;
  1932.     X = FLOOR(Half - X / Radix) * Radix + X;
  1933.     Q = (Q - X * Z) / Radix + X * X * (D / Radix);
  1934.     Z = Z - Two * X * D;
  1935.     if (Z <= Zero) {
  1936.         Z = - Z;
  1937.         Z1 = - Z1;
  1938.         }
  1939.     D = Radix * D;
  1940.     }
  1941.  
  1942. /* SR3750 */
  1943.  
  1944. SR3750()
  1945. {
  1946.     if (! ((X - Radix < Z2 - Radix) || (X - Z2 > W - Z2))) {
  1947.         I = I + 1;
  1948.         X2 = SQRT(X * D);
  1949.         Y2 = (X2 - Z2) - (Y - Z2);
  1950.         X2 = X8 / (Y - Half);
  1951.         X2 = X2 - Half * X2 * X2;
  1952.         SqEr = (Y2 + Half) + (Half - X2);
  1953.         if (SqEr < MinSqEr) MinSqEr = SqEr;
  1954.         SqEr = Y2 - X2;
  1955.         if (SqEr > MaxSqEr) MaxSqEr = SqEr;
  1956.         }
  1957.     }
  1958.  
  1959. /* IsYeqX */
  1960.  
  1961. IsYeqX()
  1962. {
  1963.     if (Y != X) {
  1964.         if (N <= 0) {
  1965.             if (Z == Zero && Q <= Zero)
  1966.                 printf("WARNING:  computing\n");
  1967.             else BadCond(Defect, "computing\n");
  1968.             printf("\t(%.17e) ^ (%.17e)\n", Z, Q);
  1969.             printf("\tyielded %.17e;\n", Y);
  1970.             printf("\twhich compared unequal to correct %.17e ;\n",
  1971.                 X);
  1972.             printf("\t\tthey differ by %.17e .\n", Y - X);
  1973.             }
  1974.         N = N + 1; /* ... count discrepancies. */
  1975.         }
  1976.     }
  1977.  
  1978. /* SR3980 */
  1979.  
  1980. SR3980()
  1981. {
  1982.     do {
  1983.         Q = (FLOAT) I;
  1984.         Y = POW(Z, Q);
  1985.         IsYeqX();
  1986.         if (++I > M) break;
  1987.         X = Z * X;
  1988.         } while ( X < W );
  1989.     }
  1990.  
  1991. /* PrintIfNPositive */
  1992.  
  1993. PrintIfNPositive()
  1994. {
  1995.     if (N > 0) printf("Similar discrepancies have occurred %d times.\n", N);
  1996.     }
  1997.  
  1998. /* TstPtUf */
  1999.  
  2000. TstPtUf()
  2001. {
  2002.     N = 0;
  2003.     if (Z != Zero) {
  2004.         printf("Since comparison denies Z = 0, evaluating ");
  2005.         printf("(Z + Z) / Z should be safe.\n");
  2006.         sigsave = sigfpe;
  2007.         if (setjmp(ovfl_buf)) goto very_serious;
  2008.         Q9 = (Z + Z) / Z;
  2009.         printf("What the machine gets for (Z + Z) / Z is  %.17e .\n",
  2010.             Q9);
  2011.         if (FABS(Q9 - Two) < Radix * U2) {
  2012.             printf("This is O.K., provided Over/Underflow");
  2013.             printf(" has NOT just been signaled.\n");
  2014.             }
  2015.         else {
  2016.             if ((Q9 < One) || (Q9 > Two)) {
  2017. very_serious:
  2018.                 N = 1;
  2019.                 ErrCnt [Serious] = ErrCnt [Serious] + 1;
  2020.                 printf("This is a VERY SERIOUS DEFECT!\n");
  2021.                 }
  2022.             else {
  2023.                 N = 1;
  2024.                 ErrCnt [Defect] = ErrCnt [Defect] + 1;
  2025.                 printf("This is a DEFECT!\n");
  2026.                 }
  2027.             }
  2028.         sigsave = 0;
  2029.         V9 = Z * One;
  2030.         Random1 = V9;
  2031.         V9 = One * Z;
  2032.         Random2 = V9;
  2033.         V9 = Z / One;
  2034.         if ((Z == Random1) && (Z == Random2) && (Z == V9)) {
  2035.             if (N > 0) Pause();
  2036.             }
  2037.         else {
  2038.             N = 1;
  2039.             BadCond(Defect, "What prints as Z = ");
  2040.             printf("%.17e\n\tcompares different from  ", Z);
  2041.             if (Z != Random1) printf("Z * 1 = %.17e ", Random1);
  2042.             if (! ((Z == Random2)
  2043.                 || (Random2 == Random1)))
  2044.                 printf("1 * Z == %g\n", Random2);
  2045.             if (! (Z == V9)) printf("Z / 1 = %.17e\n", V9);
  2046.             if (Random2 != Random1) {
  2047.                 ErrCnt [Defect] = ErrCnt [Defect] + 1;
  2048.                 BadCond(Defect, "Multiplication does not commute!\n");
  2049.                 printf("\tComparison alleges that 1 * Z = %.17e\n",
  2050.                     Random2);
  2051.                 printf("\tdiffers from Z * 1 = %.17e\n", Random1);
  2052.                 }
  2053.             Pause();
  2054.             }
  2055.         }
  2056.     }
  2057.  
  2058. notify(s)
  2059. char *s;
  2060. {
  2061.     printf("%s test appears to be inconsistent...\n", s);
  2062.     printf("   PLEASE NOTIFY KARPINKSI!\n");
  2063.     }
  2064.  
  2065. /*SPLIT msgs.c */
  2066.  
  2067. /* Instructions */
  2068.  
  2069. msglist(s)
  2070. char **s;
  2071. { while(*s) printf("%s\n", *s++); }
  2072.  
  2073. Instructions()
  2074. {
  2075.   static char *instr[] = {
  2076.     "Lest this program stop prematurely, i.e. before displaying\n",
  2077.     "    `END OF TEST',\n",
  2078.     "try to persuade the computer NOT to terminate execution when an",
  2079.     "error like Over/Underflow or Division by Zero occurs, but rather",
  2080.     "to persevere with a surrogate value after, perhaps, displaying some",
  2081.     "warning.  If persuasion avails naught, don't despair but run this",
  2082.     "program anyway to see how many milestones it passes, and then",
  2083.     "amend it to make further progress.\n",
  2084.     "Answer questions with Y, y, N or n (unless otherwise indicated).\n",
  2085.     0};
  2086.  
  2087.     msglist(instr);
  2088.     }
  2089.  
  2090. /* Heading */
  2091.  
  2092. Heading()
  2093. {
  2094.   static char *head[] = {
  2095.     "Users are invited to help debug and augment this program so it will",
  2096.     "cope with unanticipated and newly uncovered arithmetic pathologies.\n",
  2097.     "Please send suggestions and interesting results to",
  2098.     "\tRichard Karpinski",
  2099.     "\tComputer Center U-76",
  2100.     "\tUniversity of California",
  2101.     "\tSan Francisco, CA 94143-0704, USA\n",
  2102.     "In doing so, please include the following information:",
  2103. #ifdef Single
  2104.     "\tPrecision:\tsingle;",
  2105. #else
  2106.     "\tPrecision:\tdouble;",
  2107. #endif
  2108.     "\tVersion:\t10 February 1989;",
  2109.     "\tComputer:\n",
  2110.     "\tCompiler:\n",
  2111.     "\tOptimization level:\n",
  2112.     "\tOther relevant compiler options:",
  2113.     0};
  2114.  
  2115.     msglist(head);
  2116.     }
  2117.  
  2118. /* Characteristics */
  2119.  
  2120. Characteristics()
  2121. {
  2122.     static char *chars[] = {
  2123.      "Running this program should reveal these characteristics:",
  2124.     "     Radix = 1, 2, 4, 8, 10, 16, 100, 256 ...",
  2125.     "     Precision = number of significant digits carried.",
  2126.     "     U2 = Radix/Radix^Precision = One Ulp",
  2127.     "\t(OneUlpnit in the Last Place) of 1.000xxx .",
  2128.     "     U1 = 1/Radix^Precision = One Ulp of numbers a little less than 1.0 .",
  2129.     "     Adequacy of guard digits for Mult., Div. and Subt.",
  2130.     "     Whether arithmetic is chopped, correctly rounded, or something else",
  2131.     "\tfor Mult., Div., Add/Subt. and Sqrt.",
  2132.     "     Whether a Sticky Bit used correctly for rounding.",
  2133.     "     UnderflowThreshold = an underflow threshold.",
  2134.     "     E0 and PseudoZero tell whether underflow is abrupt, gradual, or fuzzy.",
  2135.     "     V = an overflow threshold, roughly.",
  2136.     "     V0  tells, roughly, whether  Infinity  is represented.",
  2137.     "     Comparisions are checked for consistency with subtraction",
  2138.     "\tand for contamination with pseudo-zeros.",
  2139.     "     Sqrt is tested.  Y^X is not tested.",
  2140.     "     Extra-precise subexpressions are revealed but NOT YET tested.",
  2141.     "     Decimal-Binary conversion is NOT YET tested for accuracy.",
  2142.     0};
  2143.  
  2144.     msglist(chars);
  2145.     }
  2146.  
  2147. History()
  2148.  
  2149. { /* History */
  2150.  /* Converted from Brian Wichmann's Pascal version to C by Thos Sumner,
  2151.     with further massaging by David M. Gay. */
  2152.  
  2153.   static char *hist[] = {
  2154.     "The program attempts to discriminate among",
  2155.     "   FLAWs, like lack of a sticky bit,",
  2156.     "   Serious DEFECTs, like lack of a guard digit, and",
  2157.     "   FAILUREs, like 2+2 == 5 .",
  2158.     "Failures may confound subsequent diagnoses.\n",
  2159.     "The diagnostic capabilities of this program go beyond an earlier",
  2160.     "program called `MACHAR', which can be found at the end of the",
  2161.     "book  `Software Manual for the Elementary Functions' (1980) by",
  2162.     "W. J. Cody and W. Waite. Although both programs try to discover",
  2163.     "the Radix, Precision and range (over/underflow thresholds)",
  2164.     "of the arithmetic, this program tries to cope with a wider variety",
  2165.     "of pathologies, and to say how well the arithmetic is implemented.",
  2166.     "\nThe program is based upon a conventional radix representation for",
  2167.     "floating-point numbers, but also allows logarithmic encoding",
  2168.     "as used by certain early WANG machines.\n",
  2169.     "BASIC version of this program (C) 1983 by Prof. W. M. Kahan;",
  2170.     "see source comments for more history.",
  2171.     0};
  2172.  
  2173.     msglist(hist);
  2174.     }
  2175.  
  2176. double
  2177. pow(x, y) /* return x ^ y (exponentiation) */
  2178. double x, y;
  2179. {
  2180.     extern double exp(), frexp(), ldexp(), log(), modf();
  2181.     double xy, ye;
  2182.     long i;
  2183.     int ex, ey = 0, flip = 0;
  2184.  
  2185.     if (!y) return 1.0;
  2186.  
  2187.     if ((y < -1100. || y > 1100.) && x != -1.) return exp(y * log(x));
  2188.  
  2189.     if (y < 0.) { y = -y; flip = 1; }
  2190.     y = modf(y, &ye);
  2191.     if (y) xy = exp(y * log(x));
  2192.     else xy = 1.0;
  2193.     /* next several lines assume >= 32 bit integers */
  2194.     x = frexp(x, &ex);
  2195.     if (i = ye) for(;;) {
  2196.         if (i & 1) { xy *= x; ey += ex; }
  2197.         if (!(i >>= 1)) break;
  2198.         x *= x;
  2199.         ex *= 2;
  2200.         if (x < .5) { x *= 2.; ex -= 1; }
  2201.         }
  2202.     if (flip) { xy = 1. / xy; ey = -ey; }
  2203.     return ldexp(xy, ey);
  2204. }
  2205.